:root {
  --primary: #1a1a1a;
  --secondary: #f8f8f8;
  --accent: #d4af37;
  --text: #333;
  --light-text: #777;
  --border: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  color: var(--text);
  overflow-x: hidden;
  background-color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}

nav ul li a:hover {
  color: var(--accent);
}

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-icon {
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s;
}

.header-icon:hover {
  color: var(--accent);
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  background-color: white;
  border-bottom: 1px solid var(--border);
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb ul li {
  font-size: 14px;
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.breadcrumb ul li:after {
  content: '/';
  margin-left: 10px;
}

.breadcrumb ul li:last-child:after {
  display: none;
}

.breadcrumb ul li a:hover {
  color: var(--accent);
}

.breadcrumb ul li.active {
  color: var(--primary);
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: clamp(40px, 8vw, 60px) 0;
}

.section-title {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-size: clamp(14px, 2vw, 16px);
}

.about-image {
  position: relative;
  width: 100%;
}
 
.about-image img {
  width: 100%;
  height: clamp(300px, 111vw, 680px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Team Section */
.team-section {
  padding: clamp(40px, 8vw, 60px) 0;
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: clamp(250px, 52vw, 300px);
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.team-member p {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--light-text);
}

/* Mission & Values */
.mission-values {
  padding: clamp(40px, 8vw, 60px) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-item p {
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.6;
  color: var(--text);
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  padding: clamp(40px, 8vw, 60px) 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-about p {
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--accent);
}

.footer-links h4 {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  font-size: clamp(13px, 2vw, 14px);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  font-size: clamp(12px, 2vw, 14px);
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  nav ul {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .about-content {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header-content {
    padding: 15px 0;
  }

  .about-section,
  .team-section,
  .mission-values {
    padding: 30px 0;
  }

  .about-content {
    gap: 25px;
    margin-bottom: 40px;
  }

  .value-item {
    padding: 25px 15px;
  }

  footer {
    margin-top: 60px;
  }
}